Tags Provider

1https://intelliwriter.io/api/video_tags?title=Development Tutorials se KUCH NAHI HOGA! | Tanay Pratap Hindi

API Name

Tags Generator

Description

This API is designed to automatically generate tags for a given title. It's a valuable tool for content creators and video publishers looking to generate relevant tags for their videos based on the video's title.

Endpoint

/video_tags

HTTP Method

GET

Parameters

  • Title (string) The title of the video for which you want to generate tags.

Example Request

POST /video_tags
1{
2     "Title": "How to Bake the Perfect Chocolate Chip Cookies" 
3}

Response Fields

  • tags (string) The generated article based on the provided Title, Keywords, and Subheading.

Status Code

  • 200 OK: The tags were successfully generated.
  • 400 Bad Request: If the request is missing the 'Title' parameter or if the title is too short.

Usage

  • Send a POST request to the /video_tags endpoint with the 'Title' parameter containing the title of your video.
  • The API will process the request and return generated tags, comma-separated, that you can use to improve the discoverability of your video.

This API simplifies the process of creating video tags, making it easier for you to optimize your video's metadata and improve its visibility on video platform.

1const fetch = require('node-fetch'); // For Node.js 
2 const api_key = 'your_api_key'; 
3 const url = 'https://intelliwriter.io/api/video_tags'; 
4 const data = { Title: 'Your title here' }; 
5 fetch(url, { 
6   method: 'POST', 
7   headers: { 
8     'Authorization': `Bearer ${api_key}`, 
9     'Content-Type': 'application/json', 
10   }, 
11   body: JSON.stringify(data), 
12 }) 
13 .then(response => response.json()) 
14 .then(result => console.log(result));
Logo

Intelliwriter is an AI-powered tool crafted to streamline and elevate your writing experience. Whether you're a content creator, marketer, student, or business owner, Intelliwriter is designed to transform and enhance your content creation process.

Intelliwriter.io © All rights reserved.